home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / ip.h < prev    next >
C/C++ Source or Header  |  1989-06-02  |  4KB  |  132 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)ip.h    7.6 (Berkeley) 2/22/88
  13.  */
  14.  
  15. #ifndef _IP
  16. #define _IP
  17.  
  18. /*
  19.  * Definitions for internet protocol version 4.
  20.  * Per RFC 791, September 1981.
  21.  */
  22. #define    IPVERSION    4
  23.  
  24. /*
  25.  * Structure of an internet header, naked of options.
  26.  *
  27.  * We declare ip_len and ip_off to be short, rather than u_short
  28.  * pragmatically since otherwise unsigned comparisons can result
  29.  * against negative integers quite easily, and fail in subtle ways.
  30.  */
  31. struct ip {
  32. #if (BYTE_ORDER == LITTLE_ENDIAN)
  33.     u_char    ip_hl:4,        /* header length */
  34.         ip_v:4;            /* version */
  35. #endif
  36. #if (BYTE_ORDER == BIG_ENDIAN)
  37.     u_char    ip_v:4,            /* version */
  38.         ip_hl:4;        /* header length */
  39. #endif
  40.     u_char    ip_tos;            /* type of service */
  41.     short    ip_len;            /* total length */
  42.     u_short    ip_id;            /* identification */
  43.     short    ip_off;            /* fragment offset field */
  44. #define    IP_DF 0x4000            /* dont fragment flag */
  45. #define    IP_MF 0x2000            /* more fragments flag */
  46.     u_char    ip_ttl;            /* time to live */
  47.     u_char    ip_p;            /* protocol */
  48.     u_short    ip_sum;            /* checksum */
  49.     struct    in_addr ip_src,ip_dst;    /* source and dest address */
  50. };
  51.  
  52. #define    IP_MAXPACKET    65535        /* maximum packet size */
  53.  
  54. /*
  55.  * Definitions for options.
  56.  */
  57. #define    IPOPT_COPIED(o)        ((o)&0x80)
  58. #define    IPOPT_CLASS(o)        ((o)&0x60)
  59. #define    IPOPT_NUMBER(o)        ((o)&0x1f)
  60.  
  61. #define    IPOPT_CONTROL        0x00
  62. #define    IPOPT_RESERVED1        0x20
  63. #define    IPOPT_DEBMEAS        0x40
  64. #define    IPOPT_RESERVED2        0x60
  65.  
  66. #define    IPOPT_EOL        0        /* end of option list */
  67. #define    IPOPT_NOP        1        /* no operation */
  68.  
  69. #define    IPOPT_RR        7        /* record packet route */
  70. #define    IPOPT_TS        68        /* timestamp */
  71. #define    IPOPT_SECURITY        130        /* provide s,c,h,tcc */
  72. #define    IPOPT_LSRR        131        /* loose source route */
  73. #define    IPOPT_SATID        136        /* satnet id */
  74. #define    IPOPT_SSRR        137        /* strict source route */
  75.  
  76. /*
  77.  * Offsets to fields in options other than EOL and NOP.
  78.  */
  79. #define    IPOPT_OPTVAL        0        /* option ID */
  80. #define    IPOPT_OLEN        1        /* option length */
  81. #define IPOPT_OFFSET        2        /* offset within option */
  82. #define    IPOPT_MINOFF        4        /* min value of above */
  83.  
  84. /*
  85.  * Time stamp option structure.
  86.  */
  87. struct    ip_timestamp {
  88.     u_char    ipt_code;        /* IPOPT_TS */
  89.     u_char    ipt_len;        /* size of structure (variable) */
  90.     u_char    ipt_ptr;        /* index of current entry */
  91. #if BYTE_ORDER == LITTLE_ENDIAN 
  92.     u_char    ipt_flg:4,        /* flags, see below */
  93.         ipt_oflw:4;        /* overflow counter */
  94. #endif
  95. #if BYTE_ORDER == BIG_ENDIAN 
  96.     u_char    ipt_oflw:4,        /* overflow counter */
  97.         ipt_flg:4;        /* flags, see below */
  98. #endif
  99.     union ipt_timestamp {
  100.         n_long    ipt_time[1];
  101.         struct    ipt_ta {
  102.             struct in_addr ipt_addr;
  103.             n_long ipt_time;
  104.         } ipt_ta[1];
  105.     } ipt_timestamp;
  106. };
  107.  
  108. /* flag bits for ipt_flg */
  109. #define    IPOPT_TS_TSONLY        0        /* timestamps only */
  110. #define    IPOPT_TS_TSANDADDR    1        /* timestamps and addresses */
  111. #define    IPOPT_TS_PRESPEC    2        /* specified modules only */
  112.  
  113. /* bits for security (not byte swapped) */
  114. #define    IPOPT_SECUR_UNCLASS    0x0000
  115. #define    IPOPT_SECUR_CONFID    0xf135
  116. #define    IPOPT_SECUR_EFTO    0x789a
  117. #define    IPOPT_SECUR_MMMM    0xbc4d
  118. #define    IPOPT_SECUR_RESTR    0xaf13
  119. #define    IPOPT_SECUR_SECRET    0xd788
  120. #define    IPOPT_SECUR_TOPSECRET    0x6bc5
  121.  
  122. /*
  123.  * Internet implementation parameters.
  124.  */
  125. #define    MAXTTL        255        /* maximum time to live (seconds) */
  126. #define    IPFRAGTTL    60        /* time to live for frags, slowhz */
  127. #define    IPTTLDEC    1        /* subtracted when forwarding */
  128.  
  129. #define    IP_MSS        576        /* default maximum segment size */
  130.  
  131. #endif _IP
  132.